home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / cbrushstub.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.1 KB  |  56 lines

  1. #include "stdafx.h"
  2. #include "qe3.h"
  3.  
  4. void Curve_Invert (void) 
  5. {
  6. }
  7.  
  8. void Curve_MakeCurvedBrush (qboolean negative, qboolean top, qboolean bottom, 
  9.                     qboolean s1, qboolean s2, qboolean s3, qboolean s4) 
  10. {
  11. }
  12.  
  13.  
  14. void Curve_BuildPoints (brush_t *b) 
  15. {
  16. }
  17.  
  18. void Curve_CameraDraw (brush_t *b) 
  19. {
  20. }
  21.  
  22. void Curve_XYDraw (brush_t *b) 
  23. {
  24. }
  25.  
  26. void Curve_WriteFile (char *name) 
  27. {
  28. }
  29.  
  30. void Curve_StripFakePlanes( brush_t *b )
  31. {
  32. }
  33.  
  34. void Curve_AddFakePlanes( brush_t *b ) 
  35. {
  36. }
  37.  
  38.  
  39. void Patch_BrushToMesh(){};
  40. void Patch_GenericMesh(int nWidth, int nHeight, int nOrientation){};
  41. void Patch_ReadFile (char *name){};
  42. void Patch_WriteFile (char *name){}; 
  43. void Patch_BuildPoints (brush_t *b){};
  44. void Patch_Move(int n, const vec3_t vMove){};
  45. void Patch_ApplyMatrix(int n, const vec3_t vOrigin, const vec3_t vMatrix[3]){};
  46. void Patch_EditPatch(int n){};
  47. void Patch_Deselect(){};
  48. void Patch_Delete(int n){};
  49. void Patch_Select(int n){};
  50. void Patch_Scale(int n, const vec3_t vOrigin, const vec3_t vAmt){};
  51. void Patch_Cleanup(){};
  52. bool g_bShowPatchBounds;
  53. bool g_bPatchWireFrame;
  54.  
  55.  
  56.